From e09331d62685e67092b03f5a3843f88aa80b1df9 Mon Sep 17 00:00:00 2001 From: Olaf Hering Date: Sat, 16 Jul 2011 09:25:48 +0100 Subject: [PATCH] efi: include irq.h to fix compile error in runtime.c runtime.c: In function 'efi_rs_enter': runtime.c:45:5: error: implicit declaration of function 'irq_enter' [-Werror=implicit-function-declaration] runtime.c:45:5: error: nested extern declaration of 'irq_enter' [-Werror=nested-externs] runtime.c: In function 'efi_rs_leave': runtime.c:75:5: error: implicit declaration of function 'irq_exit' [-Werror=implicit-function-declaration] runtime.c:75:5: error: nested extern declaration of 'irq_exit' [-Werror=nested-externs] Signed-off-by: Olaf Hering --- xen/arch/x86/efi/runtime.c | 1 + 1 file changed, 1 insertion(+) diff --git a/xen/arch/x86/efi/runtime.c b/xen/arch/x86/efi/runtime.c index 6286b6a1c8..a79e8c6745 100644 --- a/xen/arch/x86/efi/runtime.c +++ b/xen/arch/x86/efi/runtime.c @@ -3,6 +3,7 @@ #include #include #include +#include DEFINE_XEN_GUEST_HANDLE(CHAR16); -- 2.30.2